home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d8 / t3script.arc / OPUS.SLT < prev    next >
Text File  |  1990-04-14  |  3KB  |  90 lines

  1. /////////////////////////////////////////////////////////////////////////
  2. //             OPUS.SLT  -  by Terry Robertson (October 1988)          //
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
  4. //                                                                     //
  5. //    SCRIPT TO LOG-ON TO AN OPUS SYSTEM including one which uses      //
  6. //    BINKLEYTERM as a "front-end".                                    //
  7. //                                                                     //
  8. //    Please note that this script expects you to have assigned your   //
  9. //    FULL NAME to function key F4. The easiest way to do this is by   //
  10. //    using the FKEY script in this collection.                        //
  11. //                                                                     //
  12. //    In addition, the script is written so that it will abort if you  //
  13. //    have not completed the relevant PASSWORD entry in the Dialling   //
  14. //    Directory.                                                       //
  15. //                                                                     //
  16. //    I have assumed that you want to use the linked scripts CONNECT   //
  17. //    and CAPTURE. If you do not have these or prefer not to use       //
  18. //    them you should "comment out" the two lines starting "call"      //
  19. //    by simply putting "//" before the word "call".                   //
  20. //                                                                     //
  21. /////////////////////////////////////////////////////////////////////////
  22.  
  23.  
  24. str s[32];
  25. str y[] = ";y";
  26.  
  27. main()
  28.  
  29. {
  30.  int stat;
  31.  int t1,
  32.      t2,
  33.      t3;
  34.  int tmark;
  35.  
  36.  alarm(1);
  37.  
  38.  call("connect", 1);                    // Gives "connect" information by
  39.                                         // calling Connect.slc script
  40.  call("capture", 1);                    // Opens new capture file by calling
  41.                                         // Capture.slc script
  42.  
  43.  if (not _entry_pass)                   // no pass, so didn't recog. board
  44.   {
  45.    prints ("Sorry, I don't know the password for this BBS!");
  46.    return;
  47.   }
  48.  
  49.  t1 = track("Binkley", 1);
  50.  t2 = track(" name:", 1);
  51.  t3 = track("Password:", 1);
  52.  
  53.  tmark = timer_start(1800);             // wait up to 3 minutes for login
  54.  
  55.                                         // answer any logon questions
  56.  while (not time_up(tmark))
  57.   {
  58.    terminal();                          // let Telix process any chars and keys
  59.  
  60.    stat = track_hit(0);                 // see which (if any) track was hit
  61.  
  62.    if (stat == t1)                      // Yes, it's a Bink front-end
  63.     {
  64.      delay(50);
  65.      cputs("^[");                       // Send Escape character
  66.     }
  67.    else if (stat == t2)                 // send name
  68.     {
  69.      keyget(0x3e00, 0, s);
  70.      delchrs(s, strlen(s) - 2, strlen(s));
  71.      strcat(s, y);
  72.      cputs(s);
  73.      cputs("^M");
  74.     }
  75.    else if (stat == t3)                 // send password
  76.     {
  77.      cputs(_entry_pass);
  78.      cputs("^M");
  79.      break;                             // done with logon
  80.     }
  81.   }
  82.  
  83.  if (time_up(1))
  84.   prints("Logon failed!");
  85.  
  86.  timer_free(tmark);                     // free timer channel
  87.  track_free(0);                         // and all track channels
  88.                
  89. }
  90.